body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  overflow-x: hidden;
}

/* HERO */
.krg-hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(120deg, #00f5ff, #7f00ff, #ff00cc);
  animation: glowShift 10s infinite alternate;
}

.krg-hero h1 {
  font-size: 4rem;
  text-shadow: 0 0 20px cyan;
}

.krg-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* INTRO */
.krg-intro {
  max-width: 900px;
  margin: 60px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

/* GALLERY */
.krg-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px;
}

.art-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,255,255,0.3);
  transition: transform 0.4s, box-shadow 0.4s;
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(255,0,255,0.6);
}

/* LINKS */
.krg-links {
  text-align: center;
  padding: 80px 20px;
}

.krg-links a {
  margin: 15px;
  padding: 14px 28px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 0 15px rgba(0,198,255,0.6);
  transition: all 0.4s ease;
}

.krg-links a:hover {
  background: linear-gradient(135deg, #ff00cc, #333399);
  box-shadow: 0 0 30px rgba(255,0,204,0.9);
}

/* FOOTER */
.krg-footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ANIMATIONS */
@keyframes glowShift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(120deg); }
}
